Shows message window.
Syntax:
<msg>(Xpos, Ypos, "MessageText", "Title", OKButton)
Xpos
X-coordinate of the message window position. If Xpos is û100 and Ypos is
also û100, the message window is centered on the screen.
Ypos
Y-coordinate of the message window position. If Xpos is û100 and Ypos is
also û100, the message window is centered on the screen.
MessageText
Text you want to display in the message window.
OKButton
Can be one of these values:
0 - OK button is not shown. The <msgoff> command must be used to close the
message window.
1 - OK button is shown in the message window.
2 -
Yes and No buttons are shown in the message window. If user clicks Yes button,
the _vMsgButton system variable contains YES. Otherwise it contains NO.
Example:
<#> This macro will display message window
<#>
<cmds>
<msg>(100,100,"This is a message to notify user just about
anything....","Message",1)